home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjcanvs.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  480 b   |  20 lines

  1. // Design Time Java Canvas implementation. (HPP)
  2.  
  3. #ifndef _DTJCANVS_HPP
  4. #define _DTJCANVS_HPP
  5.  
  6. #include "dtjcomp.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJCanvas : public DTJComponent 
  9. {
  10.     public:
  11.         DTJCanvas( const MetaObject * pMetaObj );
  12.         virtual ~DTJCanvas();
  13. };
  14.  
  15. // needed for mdreader
  16. typedef DTJCanvas DTjava__dot__awt__dot__Canvas__dot__102;
  17. typedef WControl  java__dot__awt__dot__Canvas__dot__102;
  18.  
  19. #endif // _DTJCANVS_HPP
  20.